AutoTweaker API
Toggle table of contents
0.2.0-alpha.1+d0e71621
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
AutoTweaker API
AutoTweaker API
/
io.github.autotweaker.api.types.tool.bash
Package-level
declarations
Types
Types
Bash
Output
Link copied to clipboard
jvm
@
Serializable
sealed
class
BashOutput
Bash
Request
Link copied to clipboard
jvm
@
Serializable
data
class
BashRequest
(
val
command
:
String
,
val
timeout
:
Duration
,
val
envIds
:
Set
<
String
>
)
Bash
Result
Link copied to clipboard
jvm
@
Serializable
data
class
BashResult
(
val
output
:
List
<
BashOutput
>
,
val
exitCode
:
Int
,
val
timeout
:
Boolean
,
val
duration
:
Duration
)